Mixing Logical Operators Without Parentheses (MLOWP)

Description:

An expression containing multiple logical operators together should be parenthesized properly.

Incorrect:

bool a, b, c;
...
if (a || b && c)  {
    ...
}

Correct:

bool a, b, c;
...
if ((a || b) && c)  {
    ...
}